home *** CD-ROM | disk | FTP | other *** search
- /* $VER 0.9, ©1993 Dietmar Eilert
-
- This script sends an UNLOCK command to all running GoldED tasks. Useful if
- some script failed, leaving the editor in a deadlock situation (GUI
- locked). DO NEVER CALL THIS MACRO UNLESS YOU HAVE TO DO SO. If you unlock
- the GUI while a Rexx script is controlling GoldED, the script will break.
-
- */
-
- do n = 1 to 10
-
- name = 'GOLDED.' || n
-
- if show('p', name) then do
-
- address value name
- 'UNLOCK'
- end
- end
-